home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / os2 / mtic132o.zip / INFOS.RAR / INFOS / MTS_PB.212 < prev    next >
Text File  |  1996-06-20  |  1KB  |  38 lines

  1. (*
  2.  
  3.    Turbo Pascal structures for Proboard 2.12
  4.    needed for
  5.  
  6.              ▓███▀█▀█ ▓███▀█ ▓███▀▀  ▓███▀█ ▀▀████▀▀  ▀▀▀ ▓███▀█
  7.              ▒███   █ ▒███▄  ▒███ ▀█ ▒███▄█   ███░   ███░ ▒███
  8.              ████   █ ████▄▄ ████▄▄█ ████ █   ███▒   ███▒ ████▄█
  9.                     ▀
  10.    This document and MegaTIC are Copyright (c) by DiMeS, Dirk Mertens, 1995.
  11.    All rights reserved.
  12.  
  13. *)
  14.  
  15.   CONST
  16.     PBConfig    = 'CONFIG.PRO';
  17.     PBFileAreas = 'FILECFG.PRO';
  18.  
  19.   TYPE
  20.     TPBFileArea = Record
  21.       Name       : Array[0..79] of Char;
  22.       ListPath   : Array[0..79] of Char; { Name der List-Datei }
  23.       FilePath   : Array[0..79] of Char; { Path der Area }
  24.       Level      : Word;
  25.       Flags      : Longint;
  26.       CDRom      : Boolean;
  27.       MaxFiles   : Integer;
  28.       MaxKb      : Integer;
  29.       NoTops     : Boolean;
  30.       Free       : Boolean;
  31.       Groups     : Array[0..3] of Byte;
  32.       AllGroups  : Boolean;
  33.       MinAge     : Byte;
  34.       FlagsNot   : Longint;
  35.       DateFormat : Byte;
  36.       Extra      : Array[0..1] of Char;
  37.     End;
  38.